home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_03
/
1103018a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1995-11-01
|
165 b
|
9 lines
/* ctime function */
#include <time.h>
char *(ctime)(const time_t *tod)
{ /* convert calendar time to local text */
return (asctime(localtime(tod)));
}